home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Special 21
/
AMIGAplus Sonderheft 21 (1999)(ICP)(DE)[!].iso
/
PublicDomain
/
System
/
recoverdeldir
/
arexx
/
SystemReq
< prev
Wrap
Text File
|
1999-08-23
|
404b
|
16 lines
/* ARexxScript (Shows Infos using RequestChoice) */
PARSE ARG Text
IF Exists('c:RequestChoice') THEN
address command 'c:RequestChoice "Info" "*n'Text'*n" "OK"'
ELSE DO
IF OPEN('Shell','CON:160/50/400/100/Info/CLOSE/WAIT') THEN DO
DO WHILE POS('*n',Text) > 0
text = Overlay(D2C(10),text,Pos('*n',text),2)
END
WriteLn('Shell',D2C(10)||' 'text)
CALL CLOSE('Shell')
END
END
EXIT